* { 
  margin : 0;
  padding :0;
  box-sizing: border-box; }
@import url('https://fonts.googleapis.com/css?family=Rubik:400,500&display=swap');


body {
  font-family: 'Rubik', sans-serif;
  background:whitesmoke;
  overflow : auto;
}

header{
  background: rgb(3, 10, 61);
  margin:0;
  position: absolute;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  
  
}

#logo
{
    vertical-align: start;
    margin-bottom: 0px;
    margin-left: 0;
    
}

h1
{
    display: inline-block;
    vertical-align: middle;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    letter-spacing: 10px;
    font-size: 2.2vh;
    font-weight: normal;
    color: black;
    margin-top: -3px;
    color: white;
}


.container {
  display: flex;
  height: 100vh;
  align-items:center;
  justify-content:center;
}

.login_content{
	align-items:center;
	justify-items:center;
	/* effet tres cool - ajoute un filtre au element en dessous du form*/
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter:  blur(10px);
	-moz-backdrop-filter:  blur(10px);
	-o-backdrop-filter:  blur(10px);
	-ms-backdrop-filter:  blur(10px);
	/*-----------------*/

}

.login_content > h2 {
  margin: 0;
  color: #4f46a5;
}

.login_content > h4 {
  margin-top: 10px;
  font-weight: normal;
  font-size: 15px;
  color: rgba(0,0,0,.4);
}

.wrap_login100{
	-webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    font-family: Poppins-Regular, sans-serif;
    margin: 0px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    align-items:center;
    justify-items:center;
    padding: 77px 55px 33px 55px;
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.form {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-items:center;
}

.form > p {
  text-align: right;
}

.form > p > a {
  color: black;
  font-size: 14px;
}

.form-field {
  height: 46px;
  padding: 0 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  outline: 0;
  transition: .2s;
  margin-top: 20px;
}

.form-field:focus {
  border-color: #1a0989;
}

.btn_connexion{
	background:rgba(255, 255, 255, 0.804);
  border-color: #1a0989;
  color:#1a0989;
	border-radius: 30px;
	padding: 20px;
	display:block;
  margin-top:20px;
	padding:5px 13px 5px 13px;
	
}

.btn_connexion:hover{
	box-shadow: 0 0.5em 0.5em -0.4em rgb(255, 167, 218);
  transform: translateY(-0.25em);
}

.error{
  background: #F2DEDE ; 
  color : #A94442;
  opacity: 0.9;
  padding: -0.2em;
  width: 95%;
  border-radius: 5px;
  
  font-size: 14px;
  justify-content: center;
  align-items: center;
}

.animation {
  animation-name: move;
  animation-duration: .4s;
  animation-fill-mode: both;
  animation-delay: 1.5s;
}

.a1 {
  animation-delay: 0.6s;
}

.a2 {
  animation-delay: 0.7s;
}

.a3 {
  animation-delay: 0.8s;
}

.a4 {
  animation-delay: 0.9s;
}

.a5 {
  animation-delay: 1s;
}

.a6 {
  animation-delay: 1.2s;
}

@keyframes move {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }

  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 440px;
  }
}